const App = props => { const didMountRef = useRef(false) useEffect(() => { if (didMountRef.current) { doStuff() } else didMountRef.current = true } }